var syscall.env
11 uses
syscall (current package)
env_unix.go#L24: env map[string]int
env_unix.go#L35: env = make(map[string]int)
env_unix.go#L40: if _, ok := env[key]; !ok {
env_unix.go#L41: env[key] = i // first mention of key
env_unix.go#L61: if i, ok := env[key]; ok {
env_unix.go#L63: delete(env, key)
env_unix.go#L78: i, ok := env[key]
env_unix.go#L113: i, ok := env[key]
env_unix.go#L121: env[key] = i
env_unix.go#L132: for k := range env {
env_unix.go#L135: env = make(map[string]int)
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |